home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000194_news@columbia.edu _Thu Dec 28 23:21:20 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id XAA11397 for <kermit.misc@watsun>; Thu, 28 Dec 1995 23:21:16 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id XAA16946 for kermit.misc@watsun; Thu, 28 Dec 1995 23:21:14 -0500 (EST)
  4. Path: news.columbia.edu!sol.ctr.columbia.edu!news.uoregon.edu!chi-news.cic.net!usc!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  5. From: jrd@cc.usu.edu (Joe Doupnik)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Connecting to the Same Site Multiple Times
  8. Message-ID: <1995Dec28.114438.70099@cc.usu.edu>
  9. Date: 28 Dec 95 11:44:38 MDT
  10. References: <4bcrfp$lvh@piano.synapse.net> <4bt2qs$ap@gaia.ns.utk.edu> <4buiml$h54@apakabar.cc.columbia.edu>
  11. Organization: Utah State University
  12. Lines: 39
  13.  
  14. In article <4buiml$h54@apakabar.cc.columbia.edu>, fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  15. > In article <4bt2qs$ap@gaia.ns.utk.edu>,
  16. > Deutscher <sad@utkux.utcc.utk.edu> wrote:
  17. >> Would it be possible to allow ckermit to open more than one connection
  18. >> in general? I am using the OS/2 version, also on top of the os/2 telnet
  19. >> ...
  20. > Actually it's not on top of OS/2 Telnet.  C-Kermit *is* Telnet.  The
  21. > Telnet implementation is entirely within C-Kermit, which interfaces to
  22. > OS/2 TCP/IP.
  23. >> (via tcp/ip in the os/2 connect package), and I know I can open a load
  24. >> of telnet sessions and do what I want. However, sometimes I'd rather
  25. >> open another session *in the same* ckermit window, much like it is
  26. >> possible with the NCSA telnet, where one has hot keys to open a new
  27. >> session and to switch between the acitve ones.  Is that (going to be)
  28. >> possible?
  29. >>
  30. > Long question, short answer: no.  This would be a substantial amount of
  31. > work for almost imperceptible gain.  If you want to hot-key around amongst
  32. > sessions, you can do that with the OS/2 equivalent of Windows' Alt-Tab or
  33. > Alt-Esc, whatever that happens to be (I don't have OS/2 handy at the
  34. > moment).  And of course you can also "hot mouse" among sessions.
  35. > In the future, perhaps we will move in this direction, but there are quite
  36. > a few priorities that are considerably higher.
  37. > - Frank
  38. ----------
  39.     Adding another comment on this often asked question. If Kermit were
  40. to provide multiple Telnet sessions within itself then it would need to keep
  41. a rather large amount of state and buffer information for each session. I do 
  42. just that in MS-DOS Kermit; the mechanism itself is neither small nor simple.
  43. But MSK has no choice, being a DOS program. As Frank says, "it could be done 
  44. but why bother" when an existing OS/2 systems level mechanism (ALT-ESC, 
  45. warm furries) does much the same job. 
  46.     Also, as soon as that mechanism exists then someone pops up and wants
  47. to panel their screen with sessions. Do you see the problem here with multiple
  48. Kermit internal Telnet sessions?
  49.     Joe D.